home *** CD-ROM | disk | FTP | other *** search
/ United Public Domain Gold 4 / United Public Domain Gold 4.iso / fredfish / ff.0065.dms / ff.0065.adf / MenuBuilder / process.c < prev    next >
Text File  |  1987-04-04  |  329b  |  17 lines

  1.  
  2. /* main processing routine */
  3.  
  4. Process_Item(M0,I0,S0)
  5.   register int M0, I0, S0;   /* menu control flags */
  6.   {
  7.   switch (M0)
  8.     {
  9.     case -1 :   /* Close up the shop */
  10.       printf("Stub Close up Shop\n");
  11.       break;
  12.     default :   /* easy way out */
  13.       printf("Stub for %d:%d:%d\n",M0,I0,S0);
  14.       break;
  15.     };
  16.   }
  17.